home *** CD-ROM | disk | FTP | other *** search
- #ifndef __Shell_ArrayLabel_h
- #define __Shell_ArrayLabel_h
-
- #ifndef __Shell_h
- #include "Shell.Shell.h"
- #endif
-
-
-
- Shell_rectblock *Shell_Add2DDoubleArrayLabel(
- Shell_windblock *w,
- int x,
- int y,
- int xsize,
- int ysize,
- int forecol,
- int backcol,
- double **data,
- char *text
- );
-
- /* This is identical to Shell_Add2DDoubleArray, except it also */
- /* adds a font-label above the array, with contents 'text'. */
-
-
-
- Shell_rectblock *Shell_AddDoubleVerticalVectorLabel(
- Shell_windblock *wind,
- int x,
- int y,
- int size,
- int forecol,
- int backcol,
- double *data,
- char *text
- );
-
-
- #endif
-